home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / HPRINTF.HDR < prev    next >
Text File  |  1994-04-25  |  2KB  |  56 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _HPrintf( cFont_Id, nF_Val ) --> lPrinterStatus
  8.  
  9. PARAMETERS:
  10.  
  11. cFont_Id  type font, orientation, or reset code:
  12.  
  13.     "courier"
  14.     "line"    usually 16 (condensed)
  15.     "port"
  16.     "land"
  17.     "lpi"     usually 6
  18.     "lpp"     usually 66
  19.     "left"    usually 0
  20.     "right"
  21.     "top"     usually 0
  22.     "perf"    usually on
  23.     "copies"  usually 1
  24.     "reset"
  25.  
  26. nF_Val    Numeric value for Font_ID's that require a numeric
  27. parameter:
  28.  
  29.     16.6 For Line Printer
  30.     10.0 For Courier
  31.  
  32. SHORT:
  33.  
  34. Set various Hewlett Packard LaserJet font options.
  35.  
  36. DESCRIPTION:
  37.  
  38. _HPrintf() contains several printer setup capabilities for the Hewlett
  39. Packard Laserjet Series II.
  40.  
  41. NOTE:
  42.  
  43. This function will be NOT be in future versions of the KLIPPER Library. It
  44. will be replaced with another, more flexible function.  Backward
  45. compatibility or at least ease of translation will be considered in designing
  46. the new function.  Stay tuned.
  47.  
  48. EXAMPLE:
  49.  
  50. _HPrintf('line')      // sets laserjet to compress print
  51. _HPrintF('courier')   // sets printer to 10 CPI courier font
  52. _HPrintf('Reset')     // resets laserjet to default power-on values
  53. _HPrintf('lpi',8)     // sets the printer to 8 lines per inch
  54.  
  55. ******************************************************************************/
  56.